ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDEFont Class / ImGearPDEFont Constructor / ImGearPDEFont Constructor(ImGearPDFSysFont,ImGearPDEFontCreateFlags,ImGearPDFAtom,Int32[],ImGearPDFDocument)
PDF system font object referencing a system font.
Indicates whether to embed the font and whether to subset the font. Must be one of enumImGearPDEFontCreateFlags. If you want to subset a font, set both the CREATE_EMBEDDED and WILL_SUBSET options.
Name to be associated with this particular instantiation of the PDE Font.
Multiple master font design vector.
PDF document in the context of which this font should be created. Pass null to use the scratch doc.




In This Topic
    ImGearPDEFont Constructor(ImGearPDFSysFont,ImGearPDEFontCreateFlags,ImGearPDFAtom,Int32[],ImGearPDFDocument)
    In This Topic
    Initializes a new instance of the ImGearPDEFont class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal systemFont As ImGearPDFSysFont, _
       ByVal options As ImGearPDEFontCreateFlags, _
       ByVal snapshotName As ImGearPDFAtom, _
       ByVal designVector() As Integer, _
       Optional ByVal pdfDoc As ImGearPDFDocument _
    )
    'Usage
     
    Dim systemFont As ImGearPDFSysFont
    Dim options As ImGearPDEFontCreateFlags
    Dim snapshotName As ImGearPDFAtom
    Dim designVector() As Integer
    Dim pdfDoc As ImGearPDFDocument
     
    Dim instance As New ImGearPDEFont(systemFont, options, snapshotName, designVector, pdfDoc)

    Parameters

    systemFont
    PDF system font object referencing a system font.
    options
    Indicates whether to embed the font and whether to subset the font. Must be one of enumImGearPDEFontCreateFlags. If you want to subset a font, set both the CREATE_EMBEDDED and WILL_SUBSET options.
    snapshotName
    Name to be associated with this particular instantiation of the PDE Font.
    designVector
    Multiple master font design vector.
    pdfDoc
    PDF document in the context of which this font should be created. Pass null to use the scratch doc.

    Return Value

    The new instance of ImGearPDEFont class object.
    See Also